home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / PowerD / powerd / modules.lha / modules / utility / name.m < prev    next >
Encoding:
Text File  |  2000-08-04  |  417 b   |  23 lines

  1. /*
  2. **    $VER: name.m 39.5 (11.8.1993)
  3. **    Includes Release 44.1
  4. **
  5. **    Namespace definitions
  6. **
  7. **    (C) Copyright 1992-1999 Amiga, Inc.
  8. **    All Rights Reserved
  9. **/
  10.  
  11. /* The named object structure */
  12. OBJECT NamedObject
  13.     Object:PTR     /* Your pointer, for whatever you want */
  14.  
  15. /* Tags for AllocNamedObject() */
  16. CONST    ANO_NameSpace=4000,
  17.         ANO_UserSpace=4001,
  18.         ANO_Priority=4002,
  19.         ANO_Flags=4003
  20.  
  21. FLAG    NS_NODUPS,
  22.         NS_CASE
  23.